New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

markdown-it-sup

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

markdown-it-sup

<sup> tag for markdown-it markdown parser.

0.1.0
Source
npm
Version published
Maintainers
1
Created

What is markdown-it-sup?

The markdown-it-sup package is a plugin for the markdown-it Markdown parser that adds support for superscript text. This allows users to easily include superscript text in their Markdown documents.

What are markdown-it-sup's main functionalities?

Superscript Text

This feature allows you to render superscript text in Markdown. In the example, '19^th^ century' will be converted to '19<sup>th</sup> century' in HTML.

const md = require('markdown-it')();
const sup = require('markdown-it-sup');
md.use(sup);

const result = md.render('This is a superscript text example: 19^th^ century.');
console.log(result);

Other packages similar to markdown-it-sup

Keywords

markdown-it-plugin

FAQs

Package last updated on 04 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts